var runtime.fwdSig

12 uses

	runtime (current package)
		signal_unix.go#L83: var fwdSig [_NSIG]uintptr
		signal_unix.go#L135: 		fwdSig[i] = getsig(i)
		signal_unix.go#L140: 			if fwdSig[i] != _SIG_DFL && fwdSig[i] != _SIG_IGN {
		signal_unix.go#L142: 			} else if fwdSig[i] == _SIG_IGN {
		signal_unix.go#L161: 		if atomic.Loaduintptr(&fwdSig[sig]) == _SIG_IGN {
		signal_unix.go#L206: 			atomic.Storeuintptr(&fwdSig[sig], getsig(sig))
		signal_unix.go#L236: 			setsig(sig, atomic.Loaduintptr(&fwdSig[sig]))
		signal_unix.go#L301: 			atomic.Storeuintptr(&fwdSig[_SIGPROF], h)
		signal_unix.go#L320: 				h := atomic.Loaduintptr(&fwdSig[_SIGPROF])
		signal_unix.go#L1010: 		handler = atomic.Loaduintptr(&fwdSig[sig])
		signal_unix.go#L1172: 	fwdFn := atomic.Loaduintptr(&fwdSig[sig])